home *** CD-ROM | disk | FTP | other *** search
- on mouseEnter me
- set i to line 23 of field "storeData"
- if i = EMPTY then
- nothing()
- else
- cursor(280)
- puppetSprite(the currentSpriteNum, 1)
- set the member of sprite the currentSpriteNum to "Ban3_rl"
- case i of
- "1":
- set x to 1
- "2":
- set x to 2
- "3":
- set x to 3
- "4":
- set x to 4
- "5":
- set x to 5
- "6":
- set x to 6
- "7":
- set x to 7
- "8":
- set x to 8
- "9":
- set x to 9
- "10":
- set x to 10
- "11":
- set x to 11
- "12":
- set x to 12
- "13":
- set x to 13
- "14":
- set x to 14
- "15":
- set x to 15
- "16":
- set x to 16
- "17":
- set x to 17
- "18":
- set x to 18
- "19":
- set x to 19
- "20":
- set x to 20
- end case
- set the text of field "whichBox" to "box" & x & "."
- put line x of field "storeData" into field "temp"
- updateData()
- set the text of field "roll info" to "Click here to get info on " & field "appName"
- if x < 10 then
- set the member of sprite 52 to member ("s0" & x)
- else
- set the member of sprite 52 to member ("s" & x)
- end if
- set the visible of sprite 52 to 1
- end if
- end
-
- on mouseLeave me
- cursor(-1)
- puppetSprite(the currentSpriteNum, 0)
- cursor(-1)
- set the text of field "roll info" to " "
- set the visible of sprite 52 to 0
- end
-
- on mouseDown me
- set i to line 23 of field "storeData"
- if i = EMPTY then
- nothing()
- else
- puppetSprite(the currentSpriteNum, 0)
- go("info")
- end if
- end
-